home *** CD-ROM | disk | FTP | other *** search
/ Gekkan Dennou Club 147 / Gekkan Dennou Club - 2000.8 Vol. 147 (Japan).7z / Gekkan Dennou Club - 2000.8 Vol. 147 (Japan) (Track 1).bin / docs / ippon / eshot / 6 / makefile < prev   
Makefile  |  2000-07-07  |  247b  |  24 lines

  1. #    makefile for eshot.x
  2.  
  3. CC    = gcc
  4. CFLAGS    =
  5. AS    = has
  6. LD    = hlk
  7. INC    =
  8. LIBS    = libc.a libgnu.a libiocs.a xsp2lib.o
  9. LZH    = eshot
  10.  
  11. %.o:    %.c
  12.     $(CC) $(CFLAGS) -c $<
  13.  
  14.  
  15. eshot.x:    eshot.o
  16.     $(LD) $^ -o $@ -l $(LIBS)
  17.  
  18. eshot.o:    eshot.c
  19.  
  20.  
  21. dist:
  22.     LHA a -t ../$(LZH)
  23.  
  24.